home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Grab Bag
/
Shareware Grab Bag.iso
/
007
/
popscren.arc
/
SCREENS.TYP
< prev
Wrap
Text File
|
1985-09-10
|
756b
|
20 lines
{@@@@@@@@@@@ copyright (C) 1984 by Neil J. Rubenking @@@@@@@@@@@@@@@@@@@@@@@@
A variable of type "SCREEN" is exactly the same "shape" as
the video screen memory when in text mode. This type is
used in several programs, so it is stored separately and
called as needed, to avoid the problem of multiple declarations.
}
{@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@}
type
ScreenLoc = record
character : char;
attribute : byte;
end;
ScreenLine = array[1..80] of ScreenLoc;
Screen = array[1..25] of ScreenLine;
LineType = string[80];
var
Mono : Screen absolute $B000:$0000;
Colo : Screen absolute $B800:$0000;